home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-05 | 769 b | 31 lines |
- *** orig/texinfo-.1/makeinfo/makefile.djg Sun Aug 29 18:41:36 1993
- --- src/texinfo-.1/makeinfo/makefile.djg Sun Nov 28 02:05:00 1993
- ***************
- *** 0 ****
- --- 1,25 ----
- + common=../libtxi
- + LOCDEFS = -DREMOVE_OUTPUT_EXTENSIONS
- + LIBS = -L$(common) -ltxi
- + LOADLIBES = $(LIBS)
- + LDFLAGS = -s
- +
- + OBJS = makeinfo.o
- +
- + CFLAGS = -O2
- +
- + all: makeinfo.exe makeinfo.info
- +
- + makeinfo.exe: $(OBJS) $(common)/libtxi.a
- + gcc $(LDFLAGS) -o makeinfo $(OBJS) $(LOADLIBES)
- + coff2exe makeinfo
- +
- + makeinfo.o: makeinfo.c $(common)/getopt.h
- + gcc -c -I. -I$(common) $(LOCDEFS) $(CFLAGS) $*.c
- +
- + makeinfo.info: makeinfo.exe makeinfo.texi
- + makeinfo --no-split -I. makeinfo.texi -o makeinfo.info
- +
- + clean :
- + -del *.o
- + -del makeinfo
-